home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / WWW / gform.1.1 / Makefile < prev    next >
Makefile  |  1996-02-10  |  234b  |  12 lines

  1. CC    = cc
  2. CFLAGS    = -O2 -arch i386 -arch m68k -arch hppa -arch sparc -D_POSIX_SOURCE
  3. SRCS     = gform.c util.c send_email.c send_to_printer.c
  4.  
  5. all:    gform
  6.  
  7. gform:    ${SRCS} config.h     
  8.     ${CC} ${CFLAGS} -o gform ${SRCS}
  9.  
  10. clean:
  11.     rm -f *.o gform
  12.